home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 5 / TIME_ZON / COPANE.C < prev    next >
Text File  |  1991-11-03  |  686b  |  31 lines

  1. /****
  2.  * COPane.c
  3.  *
  4.  *    Pane methods for a typical application.
  5.  *
  6.  *  Copyright ⌐ 1990 Symantec Corporation.  All rights reserved.
  7.  *
  8.  ****/
  9.  
  10. /**
  11.  *
  12.  *  Most applications will want a scrollable window, so this
  13.  *  class is based on the class CPanorama. All the methods here
  14.  *  would still apply to classes based directly on CPane.
  15.  *
  16.  **/
  17.  
  18. #include "COPane.h"
  19.  
  20.  
  21. void COPane::IOPane(CView *anEncl, CBureaucrat *aSuper,
  22.                             short aWidth, short aHeight,
  23.                             short aHEncl, short aVEncl,
  24.                             SizingOption aHSizing, SizingOption aVSizing)
  25. {
  26.     inherited::IEditText(anEncl, aSuper, aWidth, aHeight, aHEncl, aVEncl,
  27.                     aHSizing, aVSizing, 0);
  28.                     
  29.     Specify(FALSE, FALSE, FALSE);
  30. }
  31.